type runtime.gcBitsArena
12 uses
runtime (current package)
mheap.go#L2362: type gcBitsArena struct {
mheap.go#L2366: next *gcBitsArena
mheap.go#L2372: free *gcBitsArena
mheap.go#L2373: next *gcBitsArena // Read atomically. Write atomically under lock.
mheap.go#L2374: current *gcBitsArena
mheap.go#L2375: previous *gcBitsArena
mheap.go#L2380: func (b *gcBitsArena) tryAlloc(bytes uintptr) *gcBits {
mheap.go#L2401: head := (*gcBitsArena)(atomic.Loadp(unsafe.Pointer(&gcBitsArenas.next)))
mheap.go#L2492: func newArenaMayUnlock() *gcBitsArena {
mheap.go#L2493: var result *gcBitsArena
mheap.go#L2496: result = (*gcBitsArena)(sysAlloc(gcBitsChunkBytes, &memstats.gcMiscSys))
mheap.go#L2509: if unsafe.Offsetof(gcBitsArena{}.bits)&7 == 0 {
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |